Open Data

Author
Published

March 28, 2025

Recopilación de información sobre Open Data. Links, libros, blogs y otra información interesante.

Este fichero es copia de uno alojado en Github, en este link y que se actualiza periódicamente.

Se ha incluido otra copia en Kaggle.

Y se aloja en Giithub y Netlify.

https://github.com/santiagomota/Open_Data

https://santiagomota.github.io/Open_Data/

https://open-data-pages.netlify.app/
# Creo el link con: 
# usethis::create_download_url("https://github.com/santiagomota/Open_Data")

# Si me quiero bajar el repositorio completo en el directorio actual
usethis::use_course(
    "https://github.com/santiagomota/Open_Data/zipball/HEAD", destdir = ".")

1 Fuentes de datos abiertos y APIs

2 Otras referencias interesantes

3 Libros

4 Generar códigos QR

library(qrcode)

qrcode_open_data <- qrcode::qr_code("https://github.com/santiagomota/Open_Data")

plot(qrcode_open_data)

generate_svg(qrcode_open_data, file = "./figs/Open_Data_Github.svg")
library(qrcode)

qrcode_open_data <- qrcode::qr_code("https://santiagomota.github.io/Open_Data/")

plot(qrcode_open_data)

generate_svg(qrcode_open_data, file = "./figs/Open_Data_Web_Github.svg")
library(qrcode)

qrcode_open_data <- qrcode::qr_code("https://open-data-pages.netlify.app/")

plot(qrcode_open_data)

generate_svg(qrcode_open_data, file = "./figs/Open_Data_Web_Netlify.svg")
# Install needed packages if not already installed
# install.packages("rsvg")
# install.packages("magick")

# Load the packages
library(rsvg)
Linking to librsvg 2.58.0
library(magick)
Linking to ImageMagick 6.9.12.98
Enabled features: fontconfig, freetype, fftw, heic, lcms, pango, raw, webp, x11
Disabled features: cairo, ghostscript, rsvg
Using 24 threads
# Convert SVG to PNG
convert_svg_to_png <- function(input_svg, output_png, width = 800, height = 600) {
  img <- rsvg::rsvg_png(input_svg, file = output_png, width = width, height = height)
  message("Saved PNG: ", output_png)
}

# Example usage
convert_svg_to_png("figs/Open_Data_Github.svg", "figs/Open_Data_Github.png")
Saved PNG: figs/Open_Data_Github.png
convert_svg_to_png("figs/Open_Data_Web_Github.svg", "figs/Open_Data_Web_Github.png")
Saved PNG: figs/Open_Data_Web_Github.png
convert_svg_to_png("figs/Open_Data_Web_Netlify.svg", "figs/Open_Data_Web_Netlify.png")
Saved PNG: figs/Open_Data_Web_Netlify.png

Reuse

Este proyecto está licenciado bajo la Licencia MIT. Puedes ver los detalles en el siguiente enlace https://opensource.org/licenses/MIT(View License)
Author Information  

A work by Santiago Mota

santiago_mota@yahoo.es

🦋